home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Gfx / Edit / TSMorph / src / jpeg_ls / jinclude.h < prev    next >
C/C++ Source or Header  |  1994-10-30  |  5KB  |  158 lines

  1. /*
  2.  * jinclude.h
  3.  *
  4.  * Copyright (C) 1991, 1992, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This is the central file that's #include'd by all the JPEG .c files.
  9.  * Its purpose is to provide a single place to fix any problems with
  10.  * including the wrong system include files.
  11.  * You can edit these declarations if you use a system with nonstandard
  12.  * system include files.
  13.  */
  14.  
  15. #define HAVE_STDC
  16. #define INCLUDES_ARE_ANSI
  17. #ifndef AMIGA
  18. #define AMIGA
  19. #endif
  20. #define INCOMPLETE_TYPES_BROKEN
  21. #define AMIGA_IO
  22. #undef PROGRESS_REPORT
  23. #define NO_MKTEMP
  24. #undef NEED_SIGNAL_CATCHER
  25. #define SHORTxSHORT_32
  26.  
  27. /*
  28.  * Normally the __STDC__ macro can be taken as indicating that the system
  29.  * include files conform to the ANSI C standard.  However, if you are running
  30.  * GCC on a machine with non-ANSI system include files, that is not the case.
  31.  * In that case change the following, or add -DNONANSI_INCLUDES to your CFLAGS.
  32.  */
  33.  
  34. #ifdef __STDC__
  35. #ifndef NONANSI_INCLUDES
  36. #define INCLUDES_ARE_ANSI    /* this is what's tested before including */
  37. #endif
  38. #endif
  39.  
  40. /*
  41.  * <stdio.h> is included to get the FILE typedef and NULL macro.
  42.  * Note that the core portable-JPEG files do not actually do any I/O
  43.  * using the stdio library; only the user interface, error handler,
  44.  * and file reading/writing modules invoke any stdio functions.
  45.  * (Well, we did cheat a bit in jmemmgr.c, but only if MEM_STATS is defined.)
  46.  */
  47.  
  48. #include <stdio.h>
  49.  
  50. /*
  51.  * We need the size_t typedef, which defines the parameter type of malloc().
  52.  * In an ANSI-conforming implementation this is provided by <stdio.h>,
  53.  * but on non-ANSI systems it's more likely to be in <sys/types.h>.
  54.  * On some not-quite-ANSI systems you may find it in <stddef.h>.
  55.  */
  56.  
  57. #ifndef INCLUDES_ARE_ANSI    /* shouldn't need this if ANSI C */
  58. #include <sys/types.h>
  59. #endif
  60. #ifdef __SASC            /* Amiga SAS C provides it in stddef.h. */
  61. #include <stddef.h>
  62. #endif
  63.  
  64. /*
  65.  * In ANSI C, and indeed any rational implementation, size_t is also the
  66.  * type returned by sizeof().  However, it seems there are some irrational
  67.  * implementations out there, in which sizeof() returns an int even though
  68.  * size_t is defined as long or unsigned long.  To ensure consistent results
  69.  * we always use this SIZEOF() macro in place of using sizeof() directly.
  70.  */
  71.  
  72. #undef SIZEOF            /* in case you included X11/xmd.h */
  73. #define SIZEOF(object)    ((size_t) sizeof(object))
  74.  
  75. /*
  76.  * fread() and fwrite() are always invoked through these macros.
  77.  * On some systems you may need to twiddle the argument casts.
  78.  * CAUTION: argument order is different from underlying functions!
  79.  */
  80.  
  81. // Add AmigaDOS based IO
  82. #ifdef AMIGA_IO
  83. #include <proto/dos.h>
  84. #undef GLOBAL
  85. #define JFREAD(file,buf,sizeofbuf)  \
  86.   ((size_t) FRead(file,(UBYTE *)buf,1L,(ULONG) sizeofbuf))
  87. #define JFWRITE(file,buf,sizeofbuf)  \
  88.   ((size_t) FWrite(file,(UBYTE *)buf,1L,(ULONG) sizeofbuf))
  89. #undef putc
  90. #define putc(c,f) \
  91.   FPutC(f,c)
  92. #undef getc
  93. #define getc(f) \
  94.   FGetC(f)
  95. #define ungetc(c,f) \
  96.   UnGetC(f,c)
  97. #define fprintf(a,b) \
  98.   VFPrintf(a,b,NULL)
  99. #define fprintf1(a,b,c) \
  100.   VFPrintf(a,b,(long *)&c)
  101. #undef stdin
  102. #define stdin Input()
  103. #undef stdout
  104. #define stdout Output()
  105. #undef stderr
  106. #define stderr Output()
  107. #define fopen(a,b) \
  108.   Open(a,b)
  109. #define fclose(a) \
  110.   Close(a)
  111. #undef fflush
  112. #define fflush(a) \
  113.   Flush(a)
  114. #define unlink(a) \
  115.   DeleteFile(a)
  116. #define fseek(a,b,c) \
  117.   Seek(a,b,c)
  118. #else
  119. #define fprintf1 fprintf
  120. #define JFREAD(file,buf,sizeofbuf)  \
  121.   ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
  122. #define JFWRITE(file,buf,sizeofbuf)  \
  123.   ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
  124. #endif
  125.  
  126. /*
  127.  * We need the memcpy() and strcmp() functions, plus memory zeroing.
  128.  * ANSI and System V implementations declare these in <string.h>.
  129.  * BSD doesn't have the mem() functions, but it does have bcopy()/bzero().
  130.  * Some systems may declare memset and memcpy in <memory.h>.
  131.  *
  132.  * NOTE: we assume the size parameters to these functions are of type size_t.
  133.  * Change the casts in these macros if not!
  134.  */
  135.  
  136. #ifdef INCLUDES_ARE_ANSI
  137. #include <string.h>
  138. #define MEMZERO(target,size)    memset((void *)(target), 0, (size_t)(size))
  139. #define MEMCOPY(dest,src,size)    memcpy((void *)(dest), (const void *)(src), (size_t)(size))
  140. #else /* not ANSI */
  141. #ifdef BSD
  142. #include <strings.h>
  143. #define MEMZERO(target,size)    bzero((void *)(target), (size_t)(size))
  144. #define MEMCOPY(dest,src,size)    bcopy((const void *)(src), (void *)(dest), (size_t)(size))
  145. #else /* not BSD, assume Sys V or compatible */
  146. #include <string.h>
  147. #define MEMZERO(target,size)    memset((void *)(target), 0, (size_t)(size))
  148. #define MEMCOPY(dest,src,size)    memcpy((void *)(dest), (const void *)(src), (size_t)(size))
  149. #endif /* BSD */
  150. #endif /* ANSI */
  151.  
  152.  
  153. /* Now include the portable JPEG definition files. */
  154.  
  155. #include "JPEG_LS/jconfig.h"
  156.  
  157. #include "JPEG_LS/jpegdata.h"
  158.